home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / amiga / uae-0.7.0b2 / src / nogui.c < prev    next >
C/C++ Source or Header  |  1998-01-20  |  553b  |  54 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * Interface to the Tcl/Tk GUI
  5.   *
  6.   * Copyright 1996 Bernd Schmidt
  7.   */
  8.  
  9. #include "sysconfig.h"
  10. #include "sysdeps.h"
  11.  
  12. #include "config.h"
  13. #include "options.h"
  14. #include "gui.h"
  15.  
  16. static void sigchldhandler(int foo)
  17. {
  18. }
  19.  
  20. int gui_init(void)
  21. {
  22.     return 0;
  23. }
  24.  
  25. int gui_update(void)
  26. {
  27.     return 0;
  28. }
  29.  
  30. void gui_exit(void)
  31. {
  32. }
  33.  
  34. void gui_led(int led, int on)
  35. {
  36. }
  37.  
  38. void gui_filename(int num, const char *name)
  39. {
  40. }
  41.  
  42. static void getline(char *p)
  43. {
  44. }
  45.  
  46. void gui_handle_events(void)
  47. {
  48. }
  49.  
  50. void gui_changesettings(void)
  51. {
  52. }
  53.  
  54.